home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / Think C dcmd 1.0.1 ƒ / Think Put Lib source / PutText.c < prev    next >
Encoding:
Text File  |  1994-06-12  |  120 b   |  10 lines  |  [TEXT/KAHL]

  1. void PutChar(char c);
  2.  
  3. void PutText(const char* s, int len )
  4. {
  5.         int i;
  6.     
  7.     for ( i=0; i<len; i++ )
  8.         PutChar( s[i] );
  9. }
  10.